home *** CD-ROM | disk | FTP | other *** search
/ Aztech's Super Games / Aztech's Super Games (Aztech New Media Corp)(1994).ISO / bstone / runme.bat < prev    next >
DOS Batch File  |  1994-08-23  |  1KB  |  46 lines

  1. @echo off
  2. cls
  3. echo This game must be installed to your hard drive.
  4. echo.
  5. echo If you wish to install this program you will need to
  6. echo have 3.5 megabytes of space free on a drive.
  7. echo.
  8. echo If you wish to install this program now press the
  9. echo letter of the drive. This will make a Directory
  10. echo called BSTONE from the Root (\) and copy the files.
  11. echo To run the program type BSTONE in the new directory.
  12. echo. 
  13. echo Letter of Drive to Install (C,D,E,F,G) or spacebar to abort.
  14. kbd CDEFG
  15. if errorlevel=5 goto I5
  16. if errorlevel=4 goto I4
  17. if errorlevel=3 goto I3
  18. if errorlevel=2 goto I2
  19. if errorlevel=1 goto I1
  20. goto QUIT
  21. :I5
  22. md g:\bstone
  23. copy *.* g:\bstone
  24. del g:\bstone\runme.bat
  25. goto quit
  26. :I4
  27. md f:\bstone
  28. copy *.* f:\bstone
  29. del f:\bstone\runme.bat
  30. goto quit
  31. :I3
  32. md e:\bstone
  33. copy *.* e:\bstone
  34. del e:\bstone\runme.bat
  35. goto quit
  36. :I2
  37. md d:\bstone
  38. copy *.* d:\bstone
  39. del d:\bstone\runme.bat
  40. goto quit
  41. :I1
  42. md c:\bstone
  43. copy *.* c:\bstone
  44. del c:\bstone\runme.bat
  45. :QUIT
  46.